home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005 / CHIP Utilities 2005.iso / boot / menus / filesys.scn < prev    next >
Encoding:
Text File  |  2005-01-19  |  4.2 KB  |  71 lines

  1. #
  2. # Filesystem Tools
  3. #
  4. filesys_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.2                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                             [Filesystem Tools 1/2]                             "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. set textColor = color[yellow on cyan]
  16. print " Partition Tools                                                                "
  17. set textColor = color[white on cyan]
  18. print " [F1] Ranish Partition Manager V2.44    [F7] XFDISK V0.9.3b (Extended FDISK)    "
  19. print " [F2] SPFDISK 2000-03q (Special FDISK)  [F8] TestDisk V5.5 (Check/undelete)     "
  20. print " [F3] Partition Resizer V1.3.4          [F9] Partition Saving V2.91             "
  21. print " [F4] Free FDISK V1.2.1                  [1] MBRtool V2.2.100                   "
  22. print " [F5] MBRWork V1.07b                     [2] FIPS V2.0                          "
  23. print " [F6] Active@ Partition Recovery V2.1.1                                         "
  24. print "                                                                                "
  25. set textColor = color[yellow on cyan]
  26. print " Boot Managers                                                                  "
  27. set textColor = color[white on cyan]
  28. print "  [3] Smart BootManager V3.7R1           [5] GAG V4.5d                          "
  29. print "  [4] Gujin V0.9                         [6] XOSL V1.1.5                        "
  30. print "                                                                                "
  31. set textColor = color[yellow on cyan]
  32. print " File Managers                                                                  "
  33. set textColor = color[white on cyan]
  34. print "  [7] DOS Navigator V4.9.0               [8] File Maven V3.5a                   "
  35. print "                                                                                "
  36. print "                                                                                "
  37. set textColor = color[blue on cyan]
  38. print " >>> Press [Space] for more filesystem tools ...                                "
  39. set textColor = color[white on cyan]
  40. print "                                                                                "
  41. set textColor = color[white on blue]
  42. print "             Please select an item (ESC to return to previous menu)             "
  43. set textColor = color[white on black]
  44.  
  45. #
  46. # Actions
  47. #
  48. getkey 500 script boothdd0.scn
  49. clear
  50. if ($lastKey == key[f1]); then memdisk \images\ranish.igz
  51. if ($lastKey == key[f2]); then bcdw \images\freedos.img \dosapps\spfdisk\startup.bat
  52. if ($lastKey == key[f3]); then bcdw \images\freedos.img \dosapps\presizer\startup.bat
  53. if ($lastKey == key[f4]); then bcdw \images\freedos.img \dosapps\fdisk\startup.bat
  54. if ($lastKey == key[f5]); then bcdw \images\freedos.img \dosapps\mbrwork\startup.bat
  55. if ($lastKey == key[f6]); then bcdw \images\freedos.img \dosapps\pr\startup.bat
  56. if ($lastKey == key[f7]); then bcdw \images\freedos.img \dosapps\xfdisk\startup.bat
  57. if ($lastKey == key[f8]); then bcdw \images\freedos.img \dosapps\testdisk\startup.bat
  58. if ($lastKey == key[f9]); then bcdw \images\freedos.img \dosapps\savepart\startup.bat
  59. if ($lastKey == key[1]); then bcdw \images\freedos.img \dosapps\mbrtool\startup.bat
  60. if ($lastKey == key[2]); then bcdw \images\freedos.img \dosapps\fips\startup.bat
  61. if ($lastKey == key[3]); then memdisk \images\smrtboot.igz
  62. if ($lastKey == key[4]); then memdisk \images\gujin.igz
  63. if ($lastKey == key[5]); then memdisk \images\gag.igz
  64. if ($lastKey == key[6]); then bcdw \images\freedos.img \dosapps\xosl\startup.bat
  65. if ($lastKey == key[7]); then bcdw \images\freedos.img \dosapps\dosnavig\startup.bat
  66. if ($lastKey == key[8]); then bcdw \images\freedos.img \dosapps\fmaven\startup.bat
  67. if ($lastKey == key[space]); then script filesys2.scn
  68. if ($lastKey == key[esc]); then script main.scn
  69. goto filesys_menu
  70.  
  71.